From 8ec46856982714508969cf77c1e52961cca265f0 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Fri, 10 Feb 2006 16:16:33 -0700 Subject: [PATCH] [IA64] cleanup extraneous function name change from upstream irq_exit() was briefly renamed to xen_irq_exit(), but the change is no longer necessary. Reverting to original name and parameters. Signed-off-by: Alex Williamson --- xen/arch/ia64/linux-xen/irq_ia64.c | 2 +- xen/arch/ia64/xen/xenirq.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/ia64/linux-xen/irq_ia64.c b/xen/arch/ia64/linux-xen/irq_ia64.c index e5adfa6869..346de4c167 100644 --- a/xen/arch/ia64/linux-xen/irq_ia64.c +++ b/xen/arch/ia64/linux-xen/irq_ia64.c @@ -169,7 +169,7 @@ ia64_handle_irq (ia64_vector vector, struct pt_regs *regs) * handler needs to be able to wait for further keyboard interrupts, which can't * come through until ia64_eoi() has been done. */ - xen_irq_exit(regs); + irq_exit(); } #ifdef CONFIG_HOTPLUG_CPU diff --git a/xen/arch/ia64/xen/xenirq.c b/xen/arch/ia64/xen/xenirq.c index e40daeb832..23d761c0c5 100644 --- a/xen/arch/ia64/xen/xenirq.c +++ b/xen/arch/ia64/xen/xenirq.c @@ -59,7 +59,7 @@ xen_do_IRQ(ia64_vector vector) /* * Exit an interrupt context. Process softirqs if needed and possible: */ -void xen_irq_exit(struct pt_regs *regs) +void irq_exit(void) { sub_preempt_count(IRQ_EXIT_OFFSET); } -- 2.30.2